home *** CD-ROM | disk | FTP | other *** search
/ Freelog 100 / FreelogNo100-NovembreDecembre2010.iso / ViePratique / Calendar Magic / setup.exe / {app} / BMI.shf < prev    next >
Text File  |  2007-01-29  |  374b  |  15 lines

  1. Degrees
  2. '  Body Mass Index (BMI)
  3. '
  4. '  MetricCalc = 1 if mass (weight) is in kilograms and height in metres
  5. '  MetricCalc = 0 if mass (weight) is in British pounds and height in inches
  6. '
  7. MetricCalc = 1
  8. ==> MetricCalc = 1
  9. Mass = 70
  10. ==> Mass = 70
  11. Height = 1.7
  12. ==> Height = 1.7
  13. BMI = {MetricCalc * 1 + invert(MetricCalc) * 703} * Mass / Height ^ 2
  14. ==> BMI = 24.22
  15.